home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / knowhow4 / hypview.h < prev    next >
C/C++ Source or Header  |  1994-10-10  |  711b  |  24 lines

  1. #ifndef _HYPERTEXT_VIEW_H_
  2. #define _HYPERTEXT_VIEW_H_
  3.  
  4. #include "outwin.h"
  5. #include "blk.h"
  6.  
  7. class HypertextView : public Block
  8.     {
  9.     protected:
  10.     Element* home_element; Element* end_element;
  11.     OutputWindow* view_win;
  12.     public:
  13.     HypertextView(rect coordinates, char* vName, char* fName = "",
  14.            int res = FIXED,
  15.            int interv = pScreenSet->sub_interval,
  16.            BORDERS b_type = SHOW_BORDER, int s = 10, char* h = "",
  17.            int bak = pColorSet->colors.BAK_COLOR,
  18.            int attr = pColorSet->colors.ATTR_COLOR,
  19.            int p_height = st_page_height);
  20.     virtual void rearrange();
  21.     void jmp_to(char* context)  { view_win->jmp_to(context); }
  22.     };
  23.  
  24. #endif _HYPERTEXT_VIEW_H_